home *** CD-ROM | disk | FTP | other *** search
/ Just Sports / Quantum Axcess - Just Sports.iso / basscl / bcinstal.bat < prev    next >
DOS Batch File  |  1993-08-04  |  2KB  |  70 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto usage
  4. if exist %1\bclass\nul goto goahead
  5. echo Creating BCLASS directory....
  6. mkdir %1\bclass
  7. :goahead
  8. echo.
  9. copy *.ran %1\bclass
  10. copy *.asc %1\bclass
  11. copy *.map %1\bclass
  12. copy *.pic %1\bclass
  13. copy bcinstal.bat %1\bclass
  14. copy orderfrm.txt %1\bclass
  15. copy q&a.txt %1\bclass
  16. copy register.txt %1\bclass
  17. copy map.trn %1\bclass
  18. copy *.doc %1\bclass
  19. copy bassclas.exe %1\bclass
  20. copy bclass.doc %1\bclass
  21. if exist %1\bclass\bigfish.txt goto ask
  22. goto movealong
  23. :ask
  24. cls
  25. echo NOTE ********
  26. echo.
  27. echo The Bass Class installation is almost done, but a file of BIG FISH
  28. echo records has been found in the BCLASS directory.
  29. echo. 
  30. echo Continuing this installation will overwrite these records and your
  31. echo BIG STRINGER records, establishing new records to beat.
  32. echo.
  33. echo Press CTRL-BREAK then answer Y to the TERMINATE BATCH JOB question to
  34. echo stop the installation NOW and preserve these records. Press any other
  35. echo key to continue with the installation which will establish new
  36. echo minimum records to beat.
  37. %1
  38. cd\bclass
  39. echo.
  40. pause
  41. echo Replacing old BIG FISH and BIG STRINGER records with default values...
  42. del %1\bclass\bigfish.txt
  43. del %1\bclass\bigstr.txt
  44. goto movealong
  45. :movealong
  46. %1
  47. cd\bclass
  48. cls  
  49. echo -------------------------------------------------------------------
  50. echo Bass Class installation is completed. To run the program now, just type
  51. echo BASSCLAS (then press ENTER). To run it in the future, type BC (then ENTER).
  52. echo -------------------------------------------------------------------
  53. echo.
  54. echo If your Bass Class disk contains a README.DOC file, be sure to read it.
  55. echo It may contain last minute information about Bass Class.
  56. echo.
  57. echo To print the Bass Class manual, type COPY BCLASS.DOC PRN then press ENTER.
  58. echo.
  59. goto end
  60. :usage
  61. echo    You must specify a disk drive where Bass Class is to be installed:
  62. echo.
  63. echo    EXAMPLES:            bcinstal c: 
  64. echo                           -OR-
  65. echo                         bcinstal d:
  66. echo.
  67. echo    Notice the c: and the d: at the end of the command. These specify
  68. echo    where you want to install Bass Class.
  69. goto end
  70. :end